home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / thinkref / archive / THINKPascalUH2.1.sea / THINKPas Univ Hdr 2.1 / Interfaces / Strings.p < prev    next >
Text File  |  1995-09-12  |  1KB  |  50 lines

  1. { Converted with MPW2TPas Tuesday, September 12, 1995 10:32:04 PM }
  2. {
  3.      File:        Strings.p
  4.  
  5.      Contains:    Pascal <-> C String Interfaces.
  6.  
  7.      Version:    Technology:    System 7.5
  8.                  Package:    Universal Interfaces 2.1 in “MPW Latest” on ETO #18
  9.  
  10.      Copyright:    © 1984-1995 by Apple Computer, Inc.
  11.                  All rights reserved.
  12.  
  13.      Bugs?:        If you find a problem with this file, use the Apple Bug Reporter
  14.                  stack.  Include the file and version information (from above)
  15.                  in the problem description and send to:
  16.                      Internet:    apple.bugs@applelink.apple.com
  17.                      AppleLink:    APPLE.BUGS
  18.  
  19. }
  20.  
  21.  UNIT Strings;
  22.  INTERFACE
  23.  
  24.  
  25. {$IFC UNDEFINED __STRINGS__}
  26. {$SETC __STRINGS__ := 1}
  27.  
  28.   USES
  29.    ConditionalMacros, Types;
  30.  
  31. { $PUSH}
  32. { $ALIGN MAC68K}
  33. { $LibExport+}
  34. {$IFC OLDROUTINELOCATIONS }
  35.  
  36. PROCEDURE C2PStrProc(aStr: UNIV Ptr);
  37. FUNCTION C2PStr(cString: UNIV Ptr): StringPtr;
  38. PROCEDURE P2CStrProc(aStr: StringPtr);
  39. FUNCTION P2CStr(pString: StringPtr): Ptr;
  40. {$ENDC}
  41.  
  42. { $ALIGN RESET}
  43. { $POP}
  44.  
  45. {$ENDC} {__STRINGS__}
  46.  
  47.  IMPLEMENTATION
  48.  END.
  49.  
  50.